%
'==================================
' 显示日志
' 更新时间: 2006-1-13
'==================================
'处理日志信息
dim id
If CheckStr(Request.QueryString("id"))<>Empty Then
id=CheckStr(Request.QueryString("id"))
End If
Dim log_View,log_ViewArr,keyword,preLog,nextLog,blog_Cate,blog_CateArray,comDesc
Dim getCate
set getCate=new Category
if IsInteger(id) then
Set log_View=Server.CreateObject("ADODB.RecordSet")
if blog_postFile then
SQL="SELECT top 1 log_ID,log_CateID,log_title,Log_IsShow,log_ViewNums,log_Author,log_comorder,log_DisComment FROM blog_Content WHERE log_ID="&id&" and log_IsDraft=false"
else
SQL="SELECT top 1 log_ID,log_CateID,log_title,Log_IsShow,log_ViewNums,log_Author,log_comorder,log_DisComment,log_Content,log_PostTime,log_edittype,log_ubbFlags,log_CommNums,log_QuoteNums,log_weather,log_level,log_Modify,log_FromUrl,log_From,log_tag FROM blog_Content WHERE log_ID="&id&" and log_IsDraft=false"
end if
log_View.Open SQL,Conn,1,3
SQLQueryNums=SQLQueryNums+1
if log_View.eof or log_View.bof then log_View.close:showmsg "错误信息","不存在当前日志!
单击返回","ErrorIcon",""
log_View("log_ViewNums")=log_View("log_ViewNums")+1
log_View.UPDATE
log_ViewArr=log_View.GetRows
log_View.Close
set log_View = nothing
getCate.load(int(log_ViewArr(1,0))) '获取分类信息
if log_ViewArr(3,0) and not getCate.cate_Secret then
BlogTitle=log_ViewArr(2,0) & " - " & siteName
end if
else
showmsg "错误信息","非法操作","ErrorIcon",""
end if
getBlogHead BlogTitle,getCate.cate_Name,getCate.cate_ID
%>